home *** CD-ROM | disk | FTP | other *** search
Java Source | 1997-02-27 | 497 b | 20 lines | [TEXT/CWIE] |
- /* SK8 © 1997 Apple Computer, Inc.
- This code is protected under the current SK8 License
- See http://sk8.research.apple.com/ for more information
- Apple Research Laboratories
- */
-
-
- public class listvisitstate extends visitstate {
- public list mList;
- public list mCell;
-
- //constructor
- public listvisitstate (list inList, list inState){
- mList = inList;
- mCell = inState;
- }
- public listvisitstate (list inList) {this(inList, inList);}
- public listvisitstate () {this(null, null);}
-
- }